home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / programs / radd1_9.zip / RADDSTR.002 < prev    next >
Text File  |  1993-03-02  |  2KB  |  55 lines

  1. (* Structure for RADCFG?.DAT                                     *)
  2. (* Copyright 1991 Mike Wilson for RADD, CBV.                     *)
  3. (* ALL RIGHTS RESERVED                                           *)
  4.  
  5.  
  6. CONST
  7.  LdCode      = 1;
  8.  ExitPath    = 2;
  9.  LogFileName = 3;
  10.  BBSMsgPath  = 4;
  11.  XXXXA       = 5;
  12.  
  13.  Hr          = 1;
  14.  Min         = 2;
  15.  Sec         = 3;
  16.  Hun         = 4;
  17.  
  18.  AllowEdit           = 1;
  19.  UseFoneInf          = 2;
  20.  CheckBothNumbers    = 3;
  21.  ForceUSFormat       = 4;
  22.  AlwaysDropCaller    = 5;
  23.  
  24. Type
  25.      RaddRecord = Record
  26.  
  27.           BooX     : Array[1..10] of Boolean; { LdCode, ExitPath ect...}
  28.           Byt      : Array[1..10] of Byte;    { Extra info for later versions }
  29.           Int      : Array[1..10] of Integer; { ^ }
  30.           Wrd      : Array[1..5] of word;     { ^ }
  31.           Rel      : Array[1..5] of Real;     { ^ }
  32.           Lng      : Array[1..3] of Longint;  { ^ }
  33.           StrX     : Array[1..10] of String;  { ^ }
  34.  
  35.           QuitAfterLD,            { quit after LD calback? }
  36.           TOLLCALL : Boolean;     { Allows LD callbacks?   }
  37.  
  38.           StartTime,                        { Start time for LD calls }
  39.           EndTime  : Array [1..4] of Word;  { EndTime for LD Calls    }
  40.  
  41.           VALSEC   : Word;        { Validated Security Level }
  42.           BoardNumber,            { Message board numerb to post stuff in }
  43.           COMPORT  : Byte;        { Modem comport }
  44.  
  45.           AFlag,                  { Flag settings....}
  46.           BFlag,
  47.           Cflag,
  48.           Dflag,
  49.           INIT,                   { Modem init string }
  50.           DIAL,                   { Modem Dial String }
  51.           DIALSUF,                { Modem Dial Suffix }
  52.           RAPATH   : String;      { Path to BBS Files }
  53. End;
  54.  
  55.